/**
* Template Name: UpConstruction
* Updated: Mar 10 2023 with Bootstrap v5.2.3
* Template URL: https://bootstrapmade.com/upconstruction-bootstrap-construction-website-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts 
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Work Sans", sans-serif;
}*/

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* Colors */
:root {
  --color-default: #313131;
  --color-primary: #E0AD3A;
  --color-secondary: #52565e;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Lato';
  color: var(--color-default);
  overflow-x: hidden;
}

button {
  color: white;
}

.overlay a {
  color: white;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #ffc732;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "helvetica";
}

p {
  font-size: 14px
}


.text-bold {
  font-size: 16px;
  font-weight: bold;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding-top: 50px;
  padding-bottom: 50px;
  overflow: hidden;
}

.section-bg {
  background-color: #e8e3e370;
}

.section-header {
  text-align: center;
  padding-bottom: 70px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #2e3135;
}

.section-header h2:before,
.section-header h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}

.section-header h2:before {
  margin: 0 15px 10px 0;
}

.section-header h2:after {
  margin: 0 0 10px 15px;
}

.section-header p {
  margin: 0 auto 0 auto;
}

@media (min-width: 1199px) {
  .section-header p {
    max-width: 60%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 30vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: "helvetica";
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

.scroll-top-call {
  position: fixed;
  visibility: visible;

  right: 30px;
  bottom: 150px;
  z-index: 99999;
  background: #818a91;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  transition: all 0.4s;
}

.modal-body h3 {
  font-weight: 600px !important;
  font-size: 35px !important
}

.scroll-top-call i {
  font-size: 30px;
  color: white;
  line-height: 0;
  transform: rotate(250deg);
}

.scroll-top-whatsapp {
  position: fixed;
  visibility: visible;

  right: 30px;
  bottom: 80px;
  z-index: 99999;
  background: #158725;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top-whatsapp i {
  font-size: 30px;
  color: white;
  line-height: 0;

}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-secondary);
  line-height: 0;
}

.scroll-top:hover {
  background: #ffc732;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  z-index: 997;
  position: absolute;
  padding: 22px 0;
  top: 0;
  left: 0;
  right: 0;
}

.fixed-top {
  position: fixed;
  top: 0;
  background: #716e6e0f;
}

#master img {
  border-radius: 10px !important
}

video {
  border-radius: 10px !important
}

.header .logo img {
  max-height: 60px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  font-family: "helvetica";
}

.header .logo h1 span {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: "helvetica";
    font-size: 14px;
    font-weight: normal;
    color: #757575;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  /* .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  } */

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-primary);
    font-weight: bold;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: var(--color-default);
    font-weight: 400;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: #fff;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: "helvetica";
    font-size: 14px;
    font-weight: normal;
    color: #757575;
    white-space: nowrap;
    text-transform: uppercase;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #222428;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    position: relative;
    color: var(--color-primary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    padding-right: 10px;
  }

  .mobile-nav-hide {
    color: var(--color-primary);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Get Started Section
--------------------------------------------------------------*/
.get-started .content {
  padding: 30px 0;
}

.get-started .content h3 {
  font-size: 36px;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
}

form h3 {
  font-weight: 600 !important;
  font-size: 35px !important
}

.get-started .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

form .btn-get-started {
  box-shadow: 5px 5px 5px 0px #adb5bd69;
  border: none !important;
  padding: 15px !important
}

form input {
  background: #e9ecefcf !important;
  width: 100% !important;
  border: none !important;
  padding: 15px !important;
  border-radius: 2px !important;
}

.get-started .content p {
  font-size: 14px;
}


.get-started .php-email-form {
  background: #fff;
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .get-started .php-email-form {
    padding: 20px;
  }
}

.get-started .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-started .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.get-started .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.get-started .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.get-started .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.get-started .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.get-started .php-email-form input,
.get-started .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.get-started .php-email-form input:focus,
.get-started .php-email-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: none !important;

}

.get-started .php-email-form input {
  padding: 12px 15px;
}

.get-started .php-email-form textarea {
  padding: 12px 15px;
}

h3 {
  font-size: 20px !important
}

.get-started .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.get-started .php-email-form button[type=submit]:hover {
  background: rgba(254, 185, 0, 0.8);
}

.navbar .dropdown ul {
  left: 0px !important;
  width: 130px !important
}

.navbar .dropdown ul li {
  min-width: 130px !important
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.broucher .icon {
  padding: 20px;

  transform: translateX(-15%);
  font-size: 20px;
  border: 1px solid var(--color-primary);
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.broucher .icon i {
  color: var(--color-primary);
}

i {
  color: var(--color-primary);
}

.text-green {
  color: var(--color-primary) !important;
}

.amenities .d-flex {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 5px;
  padding-right: 5px;
  align-item: center !important
}

.amenity {
  font-size: 12px;
  color: var(--color-primary);
}

.amenities .icon i {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Constructions Section
--------------------------------------------------------------*/
.constructions .card-item {
  border: 1px solid rgba(82, 86, 94, 0.2);
  background: #fff;
  position: relative;
  border-radius: 0;
}

.constructions .card-item .card-bg {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.constructions .card-item .card-body {
  padding: 30px;
}

.constructions .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-secondary);
}

.constructions .card-item p {
  color: var(--color-secondary);
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  padding: 40px;
  background: #fff;
  height: 100%;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: var(--color-secondary);
  font-size: 40px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
  line-height: 1.8;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #f0f1f2;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -15px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #ebebed;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-primary);
}

.services .service-item:hover .icon:before {
  background: var(--color-primary);
}

.services .service-item:hover h3 {
  border-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;

}

.gallery .nav-tabs {
  border: 0;
}

.gallery .nav-link {
  padding: 15px 0;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  font-size: 20px !important;

}


.features .nav-link {
  padding: 15px 0;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;

  border-bottom: 4px solid #e2e4e6;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 575px) {
  .features .nav-link h4 {
    font-size: 16px;
  }

  .gallery .nav-link h4 {
    font-size: 16px;
  }
}

.features .nav-link:hover {
  color: var(--color-primary);
}

.features .nav-link.active {
  color: var(--color-primary);
  background-color: transparent;
  border-color: var(--color-primary);
}

.gallery .nav-link:hover {
  color: var(--color-primary);
}

.gallery .nav-link.active {
  color: var(--color-primary);
  background-color: transparent;
  border-color: var(--color-primary);
}

.gallery .tab-content {
  margin-top: 0px;
}

.gallery .tab-pane h3 {
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.gallery .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.gallery .tab-pane ul {
  list-style: none;
  padding: 0;
}

.gallery .tab-pane ul li {
  padding-top: 10px;
}

.gallery .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.gallery .tab-pane p:last-child {
  margin-bottom: 0;
}

.gridplan h4 {
  font-weight: 800px !important
}

.accordion-header {
  margin-bottom: 5px !important
}



.floor img {
  border-radius: 5px !important
}

.floor .bg-light-primary {
  border-radius: 10px
}


.swiper-pagination-bullet {
  background: white;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, .8) !important;
  border: 1px solid var(--color-primary);
}

.swiper-pagination-bullet-active {
  background: var(--color-primary)
}


.accordion-item {
  border: none !important
}

.swiper-slide img {
  border-radius: 8px
}

.swiper-slide {
  height: fit-content !important
}

/*.swiper-slide-active{    border: 3px solid var(--color-primary);
padding:2px;
border-radius:10px;
background: #fff;
z-index: 1;
transform: scale(1.15);
margin-top:-10px !important;

}*/
.swiper-slide img {
  width: 600px;
  height: 400px;
  object-fit: cover
}

.swiper-slide {
  margin-right: 380px !important
}

input:focus {
  border-color: var(--color-primary) !important;
  box-shadow: none !important;
  outline: none;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  margin-bottom: -10px !important
}

.swiper-wrapper {
  height: auto !important
}

.gallery-slider {
  padding: 20px;


}

.nav-tabs {
  border-bottom: none !important
}

.nav-tabs .nav-link.active {
  border-color: var(--color-primary) !important;
  color: var(--color-primary);
}

.nav-link {
  color: var(--color-default);
}

.time {
  font-weight: bold
}

.nav-link:hover {
  color: var(--color-default);
}


.splide__slide img {
  border-radius: 10px
}




.related {
  background: var(--color-primary);
  color: var(--color-default);
  padding: 8px;
  text-align: center;
  border-radius: 4px
}

.link {
  background: #F3F1F1 !important;
  color: var(--color-default);
  padding: 8px;
  text-align: center;
  border-radius: 4px
}

.c_linkcard {
  width: 18%;
  padding: 0;
}

/*  */
.quicklink .owl-stage {
  display: flex;
  flex-direction: row;
  height: 560px;
  align-items: flex-end;
}

/* .quicklink .owl-item{
  width: 250px !important;
} */
.linkCardText {
  top: 20%;
  left: 43%;
  font-weight: 600;
}

.customPrevBtn,
.customNextBtn {
  padding: 12px 35px;
}

@media only screen and (max-width : 900px) {
  .quicklink .owl-item {
    width: 250px !important;
  }

  .quicklink .owl-item img {
    height: 325px !important;
  }

  .quicklink .owl-stage {
    /* display: block; */
    /* flex-direction: row; */
    height: inherit;
    /* align-items: flex-end; */
  }
}

.master_image {
  height: 80vh;
}

/* .master_main{
  height: 88vh;
 } */
.master_image img {
  height: 100%;
}

.master-pre-btn,
.master-next-btn {
  width: 35px;
  height: 35px;
  z-index: 1;
  background-color: #ffffff99;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 768px) {
  .master_image {
    height: auto;
  }
}

@media only screen and (max-width: 520px) {
  .custom_heading {
    font-size: 20px;
  }

}

.relatedlink img {
  border-radius: 4px
}

.relatedlink a:hover {
  color: var(--color-default) !important;
  background: var(--color-primary) !important
}

.features .nav-link {
  padding: 15px 0;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid #e2e4e6;
}

.card img {
  object-fit: cover
}

.p-lg-5 {
  padding-top: 0px !important;
  padding-bottom: 0px !important
}


video::-webkit-media-controls-enclosure {
  z-index: 2;
}

video {
  position: relative;
  width: 90%;


}

.video-thumbnail i::before {}

.video-thumbnail button::before {
  display: none;
}

.video-thumbnail {
  position: relative;
  /*display: inline-block;*/
  width: 100% !important;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: white;
  border: none;
  outline: none;
}

.video-play-button:before {
  /* content: "";*/
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid var(--color-primary);
}

.hidden {
  display: none;
}

.video-play-button:hover {
  cursor: pointer;
}

.video-play-button i {
  color: var(--color-primary) !important;
}

.project-destination .img {
  display: block;
  width: 100%;
  height: 215px;
  background-size: cover;
  border-radius: 10px;
}

.project-destination .text {
  padding: 20px;
  position: relative;
  height: 215px;
  background: #00000057;
  border-radius: 10px;

}

.project-destination .text h3 {
  color: white;
  margin-bottom: 20px;
  position: absolute;
  text-align: center;
  bottom: 0px;

}

.project-destination .text span {
  position: absolute;
  top: 30px;
  right: 0;
  display: inline-block;
  background: var(--color-primary);
  padding: 4px 5px 4px 15px;
  border-radius: 20px 0 0 20px;
  color: white !important;
  font-weight: bold;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 575px) {
  .features .nav-link h4 {
    font-size: 16px;
  }
}

.features .nav-link:hover {
  color: var(--color-primary);
}

.features .nav-link.active {
  color: var(--color-primary);
  background-color: transparent;
  border-color: var(--color-primary);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Our Projects Section
--------------------------------------------------------------*/
.projects .portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.projects .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.projects .portfolio-flters li:hover,
.projects .portfolio-flters li.filter-active {
  color: var(--color-primary);
}

.projects .portfolio-flters li:first-child {
  margin-left: 0;
}

.projects .portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .projects .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.projects .portfolio-content {
  position: relative;
  overflow: hidden;
}

.projects .portfolio-content img {
  transition: 0.3s;
}

.projects .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.projects .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #fff;
  display: inline-block;
  background-color: var(--color-primary);
}

.projects .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.projects .portfolio-content .portfolio-info .preview-link,
.projects .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.projects .portfolio-content .portfolio-info .preview-link:hover,
.projects .portfolio-content .portfolio-info .details-link:hover {
  color: var(--color-primary);
}

.projects .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.projects .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.projects .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 0 15px 30px 0;
  min-height: 200px;
  box-shadow: 0px 2px 20px rgba(82, 86, 94, 0.1);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #000;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #ffd565;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d5d7da;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services .img-bg {
  background-size: cover;
  background-position: center center;
  min-height: 400px;
}

.alt-services h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.primary-bg {
  background: var(--color-primary);
}

.text-justify {
  text-align: justify !important
}


.alt-services h3:after {
  content: "";
  display: none;
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.alt-services iframe {
  border-radius: 5px !important
}

.alt-services .icon-box {
  margin-top: 50px;
}

.alt-services .icon-box i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  transition: 0.3s;
}

.alt-services .icon-box:hover i {
  background-color: var(--color-primary);
  color: #fff;
}

.alt-services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.alt-services .icon-box h4 a {
  color: #000;
  transition: 0.3s;
}

.alt-services .icon-box h4 a:hover {
  color: var(--color-primary);
}

.alt-services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h2 {
  font-size: 48px;
  font-weight: 700;
  font-family: "helvetica";
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about h2 {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.about .our-story {
  padding: 40px;
  background-color: #f5f6f7;
}

@media (min-width: 991px) {
  .about .our-story {
    padding-right: 35%;
  }
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 18px;
  color: #838893;
}

.about .our-story h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.about .our-story p:last-child {
  margin-bottom: 0;
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.about ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  margin-right: 4px;
  color: var(--color-primary);
}

.about .watch-video i {
  font-size: 32px;
  transition: 0.3s;
  color: var(--color-primary);
}

.about .watch-video a {
  font-weight: 600;
  color: var(--color-secondary);
  margin-left: 8px;
  transition: 0.3s;
}

.about .watch-video:hover a {
  color: var(--color-primary);
}

.about .about-img {
  min-height: 600px;
  background-size: cover;
  background-position: center;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
  }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
  background: #fff;
  box-shadow: 0px 0 30px rgba(82, 86, 94, 0.05);
  padding: 30px;
}

.stats-counter .stats-item i {
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
  color: var(--color-primary);
}

.stats-counter .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: var(--color-secondary);
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: "helvetica";
  font-size: 14px;
}

/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: #fff;
  font-size: 20px;
  margin: 0 8px;
}

.team .member .member-img .social a:hover {
  color: var(--color-primary);
}

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
  color: var(--color-secondary);
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: #838893;
  margin-bottom: 10px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Servie Cards Section
--------------------------------------------------------------*/
.services-cards h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
}

.services-cards p {
  font-size: 15px;
}

.services-cards ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-top: 10px;
}

.services-cards ul li i {
  font-size: 16px;
  color: var(--color-primary);
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Projet Details Section
--------------------------------------------------------------*/
.project-details .portfolio-details-slider img {
  width: 100%;
}

.project-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.project-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.project-details .swiper-button-prev,
.project-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.project-details .swiper-button-prev:after,
.project-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.project-details .swiper-button-prev:hover:after,
.project-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 575px) {

  .project-details .swiper-button-prev,
  .project-details .swiper-button-next {
    display: none;
  }
}

.project-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.project-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.project-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.project-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.project-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: #838893;
  font-size: 14px;
}

.project-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.project-details .portfolio-info .btn-visit:hover {
  background: #ffc019;
}

.project-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.project-details .portfolio-description p {
  padding: 0;
}

.project-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: #f5f6f7;
  height: 100%;
  margin-bottom: 50px;
}

.project-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.project-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.project-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left,
.project-details .portfolio-description .testimonial-item .quote-icon-right {
  color: #ffd565;
  font-size: 26px;
  line-height: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.project-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.project-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid #d5d7da;
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid #d9e3e8;
  margin: 20px 0;
  color: var(--color-secondary);
  transition: 0.3s;
}

.service-details .services-list a.active {
  font-weight: 700;
  border-color: var(--color-primary);
}

.service-details .services-list a:hover {
  border-color: var(--color-primary);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 28px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 20px 0 30px 0;
}

.contact .info-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: var(--color-primary);
  border-radius: 50%;
  border: 2px dotted #ffd565;
}

.contact .info-item h3 {
  font-size: 20px;
  color: #6c757d;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.contact .php-email-form .form-group {
  padding-bottom: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(254, 185, 0, 0.8);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.recent-blog-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-blog-posts .post-item .post-content {
  padding: 30px;
}

.recent-blog-posts .post-item .post-title {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-blog-posts .post-item .meta i {
  font-size: 16px;
  color: var(--color-primary);
}

.recent-blog-posts .post-item .meta span {
  font-size: 15px;
  color: #838893;
}

.recent-blog-posts .post-item hr {
  color: #888;
  margin: 20px 0;
}

.recent-blog-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #838893;
}

.recent-blog-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore {
  color: var(--color-primary);
}

.recent-blog-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

#hero h4 {
  color: white
}

#hero h5 {
  color: white
}

#hero h6 {
  color: white
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  overflow-x: hidden;
  padding: 0;
  margin-top: 85px;
  position: relative;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 80px 0;
  margin: 0;
  position: relative;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
  transition-duration: 0.4s;
}

.overlay {
  position: absolute;
  /* Sit on top of the page content */

  width: 100%;
  /* Full width (cover the whole page) */
  height: 100%;
  /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* Black background with opacity */
  z-index: 2;
  /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer;
}

.hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  inset: 0;
}

.accordion-button:not(.collapsed)::after {
  transform: none !important
}

.hero .info {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.youtube {
  border-radius: 0.375rem !important
}

#my-video {
  border-radius: 0.375rem !important
}

@media (min-width: 1024px) {
  .d-lg-none {
    display: none !important
  }
}

@media (max-width: 768px) {
  .modal-content {
    width: 100% !important
  }

  .youtube {
    height: 30vh !important
  }

  .gallery-slider {
    padding: 0px;
  }

  #master img {
    max-width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .nearby img {
    max-width: 80% !important
  }

  .swiper-wrapper {
    height: auto !important
  }

  .swiper-slide {
    margin-right: 20px !important
  }

  .swiper-slide img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover
  }

  .overlay {
    height: 120% !important
  }

  #hero-carousel .carousel-item img {
    height: 120vh !important
  }

  .hero .carousel {
    width: 100%;
    min-height: 120vh !important;
  }

  .hero .info {
    padding: 0 0px;
    margin-top: 150px !important;
  }

  #hero-carousel .carousel-item img {
    object-fit: cover !important
  }

  .alt-services .has-bg .before::before {
    display: none;
  }


  .d-down-none {
    display: none !important
  }

  .terms {
    display: none;
  }

  .d-sm-none {
    display: none
  }
}

@media (min-width: 1440px) {
  .request {
    width: 50%;
    float: right;
  }
}

/* #hero-carousel .carousel-item img {
  position: relative;
  width: 100%;
  object-fit: cover !important;
  height: 100vh;
}

#hero-carousel .carousel-item>img {
  -webkit-animation: thing 20s;
  -o-animation: thing 20s;
  animation: thing 20s;
} */

@keyframes thing {
  from {
    transform: scale(1, 1);
  }

  to {
    transform: scale(1.5, 1.5);
  }
}

.hero .info h2 {
  color: #fff;
  margin-bottom: 15px;

  font-size: 50px;
  font-weight: bold;
  position: relative;
}


@media (max-width: 768px) {
  .hero .info h2 {
    font-size: 36px;
  }
}

.request {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
  border-radius: 0px;
  border-radius: 0.375rem !important
}

.request h3 {
  font-size: 26px;
  font-weight: bold;

  color: var(--color-default) !important;
  margin-bottom: 30px;
}

.hero .info h3 {
  font-size: 26px;
  font-weight: bold;

  color: white;
  margin-bottom: 30px;
}

.hero .info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

#calculator form input {
  background: white !important
}

#features h4 {
  font-weight: normal !important
}

.btn-get-started {
  font-family: "helvetica";
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  border: none !important;

  color: var(--color-default);
  background: var(--color-primary);
}

.bg-light-primary {
  background: #d6d6d612;
}

.btn-get-started:hover {
  background: var(--color-primary);
  color: var(--color-default);
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.owl-carousel .item .card h5 {
  font-size: 15px;
  font-weight: normal
}

.owl-carousel .item .card h2 {
  font-size: 20px;
  font-weight: bold
}

.left-border {
  border-left: 1px solid #e8e3e370;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #838893;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: var(--color-secondary);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-primary);
  color: #fff;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: var(--color-white);
}

/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog .posts-list .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.blog .posts-list .post-img img {
  transition: 0.5s;
}

.blog .posts-list .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog .posts-list .post-content {
  padding: 30px;
}

.blog .posts-list .post-title {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.blog .posts-list .meta i {
  font-size: 16px;
  color: var(--color-primary);
}

.blog .posts-list .meta span {
  font-size: 15px;
  color: #838893;
}

.blog .posts-list p {
  margin-top: 20px;
}

.blog .posts-list hr {
  color: #888;
  margin-bottom: 20px;
}

.blog .posts-list .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #838893;
}

.blog .posts-list .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog .posts-list .post-item:hover .post-title,
.blog .posts-list .post-item:hover .readmore {
  color: var(--color-primary);
}

.blog .posts-list .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-secondary);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(82, 86, 94, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-primary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
  transition: 0.3s;
}

.blog .blog-details .meta-top a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(82, 86, 94, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #838893;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(82, 86, 94, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-secondary);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(82, 86, 94, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-secondary);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(82, 86, 94, 0.3);
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-primary);
  color: var(--color-secondary);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(254, 185, 0, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-default);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(54, 77, 89, 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item {
  display: flex;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  max-width: 80px;
  margin-right: 15px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(54, 77, 89, 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #838893;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(131, 136, 147, 0.4);
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: var(--color-secondary);
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(131, 136, 147, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-secondary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(82, 86, 94, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(254, 185, 0, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(254, 185, 0, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  color: var(--color-secondary);
  background-color: var(--color-primary);
}

#faq {
  padding: 60px 0;
}

#faq .faq-list {
  padding: 0;
  list-style: none;
}

#faq .faq-list li {
  border-bottom: 1px solid #e9eaed;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

#faq .faq-list .question {
  display: block;
  position: relative;

  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: var(--color-primary);
  transition: 0.3s;
}

#faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 5px;
}

#faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

#faq .faq-list .icon-show {
  display: none;
}

#faq .faq-list .collapsed {
  color: black;
}

#faq .faq-list .collapsed:hover {
  color: var(--color-primary);
}

#faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

#faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

@media (min-width: 768px) {
  .list-inline-item:not(:last-child) {
    margin-right: 6rem;
  }
}

.bottom {
  border-bottom: 1px solid #DADBDD;
}

footer i {
  color: var(--color-default);
}

.salesborder a {
  width: 100%
}

.ratio>* {
  position: relative !important
}



.table-responsive ul li a {
  border: 2px solid #e9ecef !important;
  border-bottom: none
}

#listgrid .list .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  border-bottom: 2px solid var(--color-primary) !important
}

.grid nav button {
  border: 2px solid #e9ecef !important;
  border-bottom: none
}

.gridplan {
  height: 180px;
  justify-content: center;
  border-radius: 30px !important
}

.gridplan p {
  font-size: 12px !important
}

.bg-div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  /* Change this to the desired height */
  background-color: rgba(0, 0, 0, 0.5);
  /* Change this to the desired background color */
  z-index: 0;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff !important;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
.sticky+.content {
  padding-top: 102px;
}


@media screen and (min-width: 768px) {
  .request form {
    padding: 15px !important;
    margin-bottom: 0px
  }

  .bg-white form {
    padding: 15px !important;
    margin-bottom: 0px
  }
}



/* New Theme 3 CSS */

@media (min-width: 1280px) {
  #header > div{
    position: relative;
  }
  #header > div > #navbar{
    position: initial;
  }
}

#header .lang-dropdown-wrapper{
  width: 100%;
  display: flex;
  justify-content: end;
}
#header .lang-dropdown-wrapper .lang-dropdown .dropdown-toggle{
  border: none;
  padding: 0;
}

.btn-dark-rounded {
  background-color: var(--color-primary);
  color: white !important;
  border-radius: 30px;
  padding: 15px 30px;
  font-size: 16px;
  border: none;
  transition: all 0.2s ease-in-out;
  text-transform: uppercase;
  font-weight: 600;
}
.btn-dark-rounded:hover {
  transform: scale(1.05);
}

body {
  background-color: #F5F5F5;
}

.fit-width {
  max-width: fit-content;
}

.divider-right {
  position: relative;
}
.divider-right:after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  width: 2px;
  background-color: #B3B3B3;
  height: 70%;
}

h2 {
  font-size: 48px;
  font-weight: bold;
  font-family: 'Lato';
}

.navbar {
  padding-left: 1.5rem;
}

#hero-owl-slider .item {
  border-radius: 15px;
  overflow: hidden;
}

#hero-owl-slider .owl-stage {
  padding-left: 0px !important;
}

#hero-owl-slider .slide-content {
  bottom: 0px;
  padding: 50px;
  width: 100%;
  background-image: linear-gradient(transparent, black);
  margin: 0;
}
#hero-owl-slider .owl-nav button span{
  color: var(--color-primary);
  font-size: 20px;
}
#hero-owl-slider .custom-nav {
  display: flex;
  align-items: end;
}
#hero-owl-slider .custom-nav button {
  background: transparent;
  border: 2px solid white;
  padding: 2px 10px;
  border-radius: 20px;
}
#hero-owl-slider .custom-nav i {
  color: white;
}
#hero-owl-slider .custom-nav button:hover {
  border-color: #B3B3B3;
}
#hero-owl-slider .custom-nav button:hover i {
  color: #B3B3B3;
}

#hero-owl-slider .custom-nav span {
  padding: 3px 10px;
}


#hero-owl-slider .slide-heading {
  font-size: 48px;
  font-weight: bold;
}
#hero-owl-slider .slide-desc {
  font-weight: bold;
  margin-bottom: 2rem !important;
}
#hero-owl-slider .slide-ownership-text{
  font-size: 12px;
}

#hero-owl-slider .slide-brochure-btn{
  font-size: 14px;
  background: white;
  color: var(--color-primary) !important;
  border-radius: 30px;
  margin-right: 0px !important;
  text-transform: uppercase;
}

#hero-owl-slider .slide-btn-row > .col{
  padding: 0px;
}

#hero-owl-slider .slide-transparent-btn{
  background: transparent;
  border: 1px solid white;
  border-radius: 30px;
  padding: 12px 40px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
}
#hero-owl-slider .slide-transparent-btn:hover{
  background: white;
  color: var(--color-primary) !important;
}

#alt-services .youtube-em iframe {
  width: 100%;
  height: 100%;
}

.broucher .flex-nowrap {
  margin: 0px -50px;
}

.broucher .item-wrapper {
  padding-left: 2rem;
}

.broucher .flex-nowrap .item-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.broucher .flex-nowrap .item-wrapper > .d-flex {
  height: 100%;
}
.broucher .flex-nowrap > .item-wrapper:not(:last-child) > .d-flex::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 80%;
  top: 10%;
  background-color: #B3B3B3;
  right: 0;
}

.alt-services .has-bg {
  position: relative;
}

.amenities .icon {
  padding: 20px;
  transform: translateX(-15%);
  font-size: 20px;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.amenities .border {
  border-radius: 0.375rem !important;
  border: 1px solid rgba(0, 0, 0, 0.175) !important;
  padding: 15px !important
}

/* Gallery */

.gallery .nav-item a.nav-link{
  border: 1px solid var(--color-primary) !important;
  border-radius: 50px;
  padding: 7px 25px !important;
  color: var(--color-primary);
}
.gallery .nav-item a.nav-link.active{
  background-color: var(--color-primary);
  color: #fff;
}

.owl-slider-custom-nav button {
  background: transparent;
  border: 2px solid var(--color-primary);
  padding: 2px 10px;
  border-radius: 20px;
}
.owl-slider-custom-nav button i {
  color: var(--color-primary);
}
.owl-slider-custom-nav button:hover {
  border-color: #B3B3B3;
}
.owl-slider-custom-nav button:hover i {
  color: #B3B3B3;
}

.gallery-slider-nav {
  padding: 1rem 0px;
  text-align: right;
}

/* payment plan */

#paymentplan .payment-tabs-dropdown select {
  cursor: pointer;
}

#paymentplan .nav-tabs a.nav-link {
  border: 1px solid var(--color-primary) !important;
  border-radius: 50px;
  padding: 7px 25px !important;
  color: var(--color-primary);
  margin-right: 10px;
}

#paymentplan .nav-tabs a.nav-link.active {
  background-color: var(--color-primary);
  color: #fff;
}

#paymentplan .tab-content table thead{
  background-color: #AFF4C6;
  font-weight: bold;
}

/* floor plan section */

.floor-plans .accordion-item .accordion-button::after,
#landMarkDetail .accordion-item .accordion-button::after
{
  background-image: url('data:image/svg+xml,<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 8.49707H15" stroke="%231E1E1E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.99661 1.5L7.99661 15.5" stroke="%231E1E1E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') !important;
}

.floor-plans .accordion-item .accordion-button:not(.collapsed)::after,
#landMarkDetail .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: url('data:image/svg+xml,<svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 9.99707H16" stroke="%231E1E1E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') !important;
}

.floor-plans .accordion-item .accordion-button,
#landMarkDetail .accordion-item .accordion-button {
  background-color: transparent !important;
  color: var(--color-primary) !important;
  box-shadow: none !important;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  padding: 1rem 0px;
}
.floor-plans .accordion-item .accordion-body,
#landMarkDetail .accordion-item .accordion-body
{
  padding: 0px;
}
.floor-plans .accordion-item .accordion-header,
#landMarkDetail .accordion-item .accordion-header {
  margin-bottom: 0px !important;
}

.floor-plans .accordion-item,
#landMarkDetail .accordion-item{
  border-bottom: 2px solid #B3B3B3 !important;
  border-radius: 0px;
  background-color: transparent;
}
.floor-plans .accordion > .accordion-item:first-child,
#landMarkDetail .accordion > .accordion-item:first-child{
  border-top: 2px solid #B3B3B3 !important;
  border-radius: 0px;
}

.floor-plans .floor-plan-tags .floor-plan-tag {
  background: #CFF7D3;
  max-width: fit-content;
  padding: 5px 1rem;
  border-radius: 5px;
  margin-bottom: 1rem;
  margin-right: 1rem;
  white-space: nowrap;
}

#virtualTour > .container {
  border-radius: 10px;
  overflow: hidden;
}

#virtualTour .virtual-tour-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 2rem;
  background-image: linear-gradient(transparent, #001029);
}

#virtualTour .virtual-tour-info a {
  background-color: #D2DF6B;
  color: #001029 !important;
}

#nearbyLocations .nearby-location-img {
  height: 250px;
  overflow: hidden;
  background: black;
  border-radius: 10px 10px 0px 0px;
}

#nearbyLocations .nearby-locations-owl-slider {
  position: relative;
}

#nearbyLocations .nearby-locations-owl-slider .item{
  background: white;
  border: 1px solid #e1e1e1;
}

#nearbyLocations .nearby-locations-owl-slider .owl-nav{
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 45%;
}

#nearbyLocations .nearby-locations-owl-slider .owl-nav button {
  color: black !important;
  background: white;
  padding: 8px 12px 12px 12px !important;
  border-radius: 30px;
  font-size: 40px;
  line-height: 16px;
}

#faq .faq-list .question, 
#faq .faq-list .question:hover {
  color: #2C2C2C;
  font-weight: bold;
}
#faq .faq-list .question i{
  color: #2C2C2C;
}
#faq .faq-list li {
  border-bottom: 1px solid #B2B2B2;
}
#faq .faq-list li p{
  color: #757575;
}

#contact input:not(.phone-dropdown-input), 
.php-email-form input:not(.phone-dropdown-input),
.phone-dropdown {
  border: 1px solid #2C2C2C !important;
  border-radius: 10px !important;
  background-color: #F5F5F5 !important;
}
#contact form {
  padding: 2rem !important;
}

.footer {
  background-color: #2C2C2C;
}

.footer .footer-nav li {
  display: inline-block;
  border-right: 1px solid white;
  padding-right: 10px;
  margin-right: 10px;
}
.footer .footer-nav li:last-child {
  border-right: none;
  padding-right: 0px;
  margin-right: 0px;
}
.footer .footer-nav li a {
  color: white;
  font-weight: 300;
  text-transform: uppercase;
}
.footer .footer-nav li a:hover {
  color: #e1e1e1;
}

.footer .social-links > a:not(:last-child) {
    margin-right: 10px;
    border-right: 1px solid #626262;
    padding-right: 10px;
}

.footer .social-links a i{
  color: white;
}

.footer .copywrite-text {
  border-top: 0.5px solid #484747;
}

.footer .privacy-policy li{
  margin-right: 2rem;
}
.footer .privacy-policy li a{
  color: #fff;
  font-size: 12px;
}
.footer .privacy-policy li a:hover{
  color: #e1e1e1;
}
.lang-dropdown-wrapper .lang-dropdown .dropdown-toggle{
  background: transparent;
  border: 1px solid #e1e1e1;
  padding: 2px 15px;
  border-radius: 50px;
  line-height: 10px;
  padding-bottom: 5px;
}
.lang-dropdown-wrapper .lang-dropdown > p{
  margin-right: 10px;
  white-space: nowrap;
}
.lang-dropdown-wrapper .lang-dropdown a:hover{
  color: #0a58ca;
}

#contact .btn-check:checked+.btn{
  background-color: #14AE5C;
  color: black;
  border: none;
}
#contact .btn-check +.btn {
  margin-bottom: 5px;
}
#contact .contact-image {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 350px;
}



.youtube-em iframe {
  width: 100% !important;
  min-height: 40vh;
}

@media (max-width: 1024px) {
  h2 {
    font-size: 2rem;
  }
  .btn-dark-rounded {
    font-size: 14px;
    padding: 10px 24px;
  }
  #hero-owl-slider .item img{
    min-height: 600px;
    object-fit: cover;
    object-position: center center;
  }
  #hero-owl-slider .slide-content {
    padding: 20px;
  }
  #hero-owl-slider .slide-heading {
    font-size: 2rem;
  }
  #hero-owl-slider .slide-desc {
    font-size: 1rem;
  }
  section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #faq .faq-list .question {
    font-size: 16px;
  }

  #virtualTour .slide-content img {
    object-fit: cover;
    object-position: center;
    min-height: 500px;
  }

  .footer .logo-wrapper {
    min-width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .footer .footer-nav-wrapper {
    max-width: 100%;
    min-width: 100%;
  }
  .footer .footer-nav-wrapper > div {
    text-align: left !important;
  }
  .footer .footer-nav-wrapper > div ul {
    padding: 0px;
  }
  .footer .copywrite-text > .row {
    flex-direction: column;
  }
  .footer .copywrite-text > .row p {
    text-align: left !important;
    padding-left: 0px !important;
  }
}

@media (min-width: 1024px) {
  .youtube-em iframe {
    min-height: 100%;
  }
}


#calculator .calculator-info-wrapper {
  background-color: #AFF4C6;
  padding: 1rem;
  color: #000;
  border-radius: 10px;
}

#calculator .calculator-info-wrapper h3{
  font-weight: bold;
  font-size: 48px !important;
  margin: 0;
}

#calculator .calculator-info-wrapper .calculator-info-header{
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #B2B2B2;
}

#calculator .calculator-info-wrapper .calculator-info-header .fit-width span{
  font-weight: 300;
}
#calculator .calculator-info-wrapper .calculator-info-body .fit-width span{
  font-weight: 600;
}

#calculator .calculator-input-wrapper .input-group .input-group-text {
  background-color: #E3E3E3;
  border-radius: 0px;
  height: 100%;
  border: none;
}

#calculator .calculator-input-wrapper .input-group {
  border: 1px solid #434343;
  border-radius: 8px;
  overflow: hidden;
  min-height: 50px;
}

#calculator .calculator-input-wrapper .input-group input {
  border: none;
}

#features .nav-item .nav-link.active{
  background-color: #2C2C2C;
  color: white;
}

#features .nav-item .nav-link{
  background-color: transparent;
  color: #2C2C2C;
  padding: 10px 25px;
  border: 1px solid #000 !important;
  border-radius: 50rem;
  cursor: pointer;
  margin-right: 5px;
}

#features .nav-item .nav-link h4{
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: bold !important;
}

#features .owl-carousel .owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: calc(50% - 30px);
  margin: 0;
  padding: 0px 2rem;
}

#features .owl-carousel .owl-nav button{
  background: white;
  border: 2px solid #fff;
  padding: 0px 13px !important;
  border-radius: 50px;
}

#features .owl-carousel .owl-nav button span{
  color: #434343;
  font-size: 45px;
  line-height: 30px;
}
#features .item .card {
  background-color: #fff;
  border: none;
  border-radius: 15px !important;
  overflow: hidden;
}
#features .item-properties svg{
  color: #434343;
  width: 15px;
  margin-right: 5px;
}
#features .item-properties{
  margin-bottom: 10px;
}
#features .item-properties p{
  color: #434343;
  margin: 0;
  display: flex;
  align-items: center;
}

#features .item-footer span{
  color: #434343;
}

.links .relatedlink > div {
  background: linear-gradient(transparent, black);
}

.links .btn-get-started {
  background: transparent;
  border: 2px solid #1E1E1E !important;
  padding: 2px 9px;
  border-radius: 50rem !important;
  color: #1E1E1E;
  margin-left: 10px;
}

.form-modal .modal-content {
  border-radius: 10px;
  overflow: hidden;
}
.form-modal .modal-body .modal-title-wrapper {
  display: flex;
  justify-content: center;
  align-items: end;
  position: relative;
  padding: 0;
}
.form-modal .modal-title-wrapper img {
  height: 170px !important;
}
.form-modal form {
  padding-bottom: 10px !important;
}
.form-modal .modal-body .modal-title-wrapper > div {
  width: 100%;
}
.form-modal .modal-body .modal-title-text {
  width: 100%;
  background: linear-gradient(transparent, #001029);
  padding: 1rem;
  bottom: 0;
  position: absolute;
}
.form-modal .modal-body .modal-title-text *{
  color: #fff;
}
.form-modal input {
  padding: 8px !important;
}

.form-modal .modal-body input, 
.form-modal .phone-dropdown .select-box input,
.form-modal .phone-dropdown {
  background-color: transparent !important;
  border: none !important;
}
.form-modal .form-input {
  display: flex;
  align-items: center;
  border: 1px solid #001029 !important;
  border-radius: 10px !important;
  color: #2c2c2c;
  padding: 2px 10px;
  margin-bottom: 10px !important;
}
.form-modal form .btn-dark-rounded{
  color: #fff !important;
  background-color: #001029;
  border-radius: 50rem !important;
  padding: 8px 30px;
}
.form-modal form .g-recaptcha {
  padding: 0px;
}
.form-modal .form-group .btn {
  border-radius: 50rem;
  margin-bottom: 5px;
  margin-right: 5px;
  padding: 5px 15px;
}
.form-modal .form-group .btn-check:checked + .btn.btn-outline-dark {
  background-color: #001029;
  color: #fff;
}

.form-modal .modal-title-wrapper .btn-close {
  right: 25px;
  position: absolute;
  top: 10px;
  background-color: white !important;
  border-radius: 10px !important;
  opacity: 1;
  padding: 10px;
}

